home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cre@te Online 2000 December
/
Cre@teOnline CD05.iso
/
MacSoft
/
XML Instance.sea
/
XML Instance
/
Required
/
plugins
/
HTMLWindow.jar
/
horst
/
HTMLView.class
(
.txt
)
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Java Class File
|
2000-03-18
|
866 b
|
20 lines
package horst;
import java.awt.Rectangle;
public class HTMLView extends BlockView {
public HTMLView(View parent, Element e, HTMLPane container) {
super(parent, e, container);
}
protected boolean isFloaterClearer() {
return true;
}
protected Rectangle layout(int x, int y, int width, LayoutInfo info) {
((View)this).reset();
super.layout(x, y, width, info);
return super.m_bounds;
}
}